home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
pascal
/
ptrp10.zip
/
TEST10.TRP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-05-17
|
296 b
|
14 lines
procedure main
var
f : text = "test10.trp"
s : string
endvar
if (reset(f) = 0)
while (not eof(f))
readln(f, s)
writeln(s)
endwhile
close(f)
endif
endproc